home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Util / B / BasicRunTime.cpt / BasicRunTime / Runtime Demo (b) (.txt) < prev    next >
Encoding:
AmigaBASIC Source Code  |  1986-10-09  |  1.4 KB  |  21 lines  |  [MSBC/MSBB]

  1. PRINT "     This is a BASIC program which demonstrates MS BASIC Runtime (b)."
  2. PRINT "The purpose of Runtime BASIC is to let you freely sell or distribute your"
  3. PRINT "BASIC programs without requiring the user of the program to own BASIC."
  4. PRINT "You may freely distribute a copy of MS BASIC Runtime (b) on"
  5. PRINT "your program disk so that someone who does not have a copy of the"
  6. PRINT "regular Microsoft BASIC (b) interpreter can run your program.  You are not"
  7. PRINT "allowed to distribute regular Microsoft BASIC (b) on any any disk that"
  8. PRINT "you sell or give away, but you are allowed to distribute Runtime BASIC."
  9. PRINT "     Runtime BASIC supports all BASIC features except the direct mode --"
  10. PRINT "Runtime BASIC cannot edit, save, or list programs, it can only run programs."
  11. PRINT "Programs must be saved in Compressed or Protected format to run in"
  12. PRINT "Runtime BASIC.  As a consequence, the MERGE option of CHAIN is not"
  13. PRINT "supported.  (If you double-click a program saved in TEXT format, "
  14. PRINT "Runtime BASIC will load but will immediately return to the Finder.)"
  15. PRINT "      Also, when you stop a program, Runtime BASIC exits directly to the"
  16. PRINT "Finder.  Because of this, the programmer may wish to trap user breaks with"
  17. PRINT "BREAK ON : ON BREAK GOSUB label."                     
  18. PRINT "                              <<Press any key to continue>>";
  19. WHILE INKEY$="" : WEND
  20. SYSTEM
  21.